home *** CD-ROM | disk | FTP | other *** search
/ 3D GFX / 3D GFX.iso / amiutils / i_l / irit5 / amigalib / makefile.ami < prev    next >
Encoding:
Makefile  |  1995-12-31  |  343 b   |  21 lines

  1. #
  2. # This is the make file for the amiga lib subdirectory.
  3. #
  4. #                Gershon Elber, Aug 1991
  5. #
  6.  
  7. include ../makeflag.ami
  8.  
  9. OBJS = stderrfx.o getenv.o putenv.o popen.o
  10.  
  11. libamg.a: $(OBJS)
  12.     rm -f libamg.a
  13.     ar rcv libamg.a *.o
  14.     -ranlib libamg.a
  15.  
  16. install: libamg.a
  17.     mv -f libamg.a $(LIB_DIR)
  18.  
  19. stderrfx.o: stderrfx.c
  20.     $(CC) $(CFLAGS) -Umain -c stderrfx.c
  21.